<DumpInterpolatedContentTask>
This task simply outputs the content variable for the module &apos;moduleA&apos; to verify it was correctly embedded via file interpolation.
  <InterpolatedContentForModulea>
    <SrcModuleaJs>
```javascript
/**
 * moduleA.js - A sample module for testing.
 */

export function greet(name) {
  return `Hello, ${name}!`;
}

export const farewell = "Goodbye!";

const internalHelper = () => {
  // Not exported
  return Math.random();
}; 
```
    </SrcModuleaJs>
  </InterpolatedContentForModulea>
</DumpInterpolatedContentTask>